home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
libs
/
netclb23
/
sync.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-05-20
|
543b
|
17 lines
#ifndef SYNC_H
#define SYNC_H
/***************************************/
/* Synchronisation Services prototypes */
/***************************************/
int CloseSemaphore( long semaphoreHandle );
int ExamineSemaphore( long semaphoreHandle,int *semaphoreValue,
word *openCount);
int OpenSemaphore( char *semaphoreName,int initialValue,long *semaphoreHandle,
word *openCount);
int SignalSemaphore( long semaphoreHandle );
int WaitOnSemaphore( long semaphoreHandle , int timeoutLimit );
#endif